home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert Center~wraps the current selection with
- <CENTER> ... </CENTER> tags.
- @EndTool:
- @Summary: insert Center~wraps selection with the Center tag
- */
-
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- var upperCaseHtmlTags = getMapFileValue("Preferences", "Upper Case HTML Tags", true);
- if(upperCaseHtmlTags)
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</CENTER>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<CENTER>");
- }
- else
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</center>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<center>");
- }
- editor.setActive();
- }
- }
-
- !!/Script
-